home *** CD-ROM | disk | FTP | other *** search
- stop();
- stove._visible = false;
- spoon._visible = false;
- oil._visible = false;
- crumbCup01._visible = false;
- var i = 0;
- while(i <= 3)
- {
- eval("mc" + i).onPress = function()
- {
- this.swapDepths(depths);
- Mouse.hide();
- this.startDrag();
- };
- eval("mc" + i).onRelease = function()
- {
- if(!finalHit.hitTest(this))
- {
- stopDrag();
- Mouse.show();
- depths++;
- }
- };
- i++;
- }
-